home *** CD-ROM | disk | FTP | other *** search
/ Programming Windows (5th Edition) / Programming Windows, 5th ed. - Companion CD (097-0002183)(1999).iso / Chap21 / EdrTest / EdrLib.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-10-09  |  433 b   |  18 lines

  1. /*----------------------
  2.    EDRLIB.H header file
  3.   ----------------------*/
  4.  
  5. #ifdef __cplusplus
  6. #define EXPORT extern "C" __declspec (dllexport)
  7. #else
  8. #define EXPORT __declspec (dllexport)
  9. #endif
  10.  
  11. EXPORT BOOL CALLBACK EdrCenterTextA (HDC, PRECT, PCSTR) ;
  12. EXPORT BOOL CALLBACK EdrCenterTextW (HDC, PRECT, PCWSTR) ;
  13.  
  14. #ifdef UNICODE
  15. #define EdrCenterText EdrCenterTextW
  16. #else
  17. #define EdrCenterText EdrCenterTextA
  18. #endif